home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / scfdgen.c < prev    next >
C/C++ Source or Header  |  1994-10-06  |  8KB  |  204 lines

  1. /* Copyright (C) 1992, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* scfdgen.c */
  20. /* Generate the CCITTFaxDecode tables */
  21. #include "stdio_.h"    /* includes std.h */
  22. #include "scf.h"
  23. #include "malloc_.h"
  24. #include "memory_.h"
  25.  
  26. typedef void (*cfd_node_proc)(P6(cfd_node *, cfd_node *,
  27.                  uint, int, int, int));
  28. typedef void (*cfd_enum_proc)(P4(cfd_node_proc,
  29.                  cfd_node *, cfd_node *, int));
  30. private void cfd_build_tree(P4(cfd_node *, cfd_enum_proc, int, FILE *));
  31. private void cfd_enumerate_white(P4(cfd_node_proc,
  32.                     cfd_node *, cfd_node *, int));
  33. private void cfd_enumerate_black(P4(cfd_node_proc,
  34.                     cfd_node *, cfd_node *, int));
  35. private void cfd_enumerate_2d(P4(cfd_node_proc,
  36.                  cfd_node *, cfd_node *, int));
  37. private void cfd_enumerate_uncompressed(P4(cfd_node_proc,
  38.                        cfd_node *, cfd_node *, int));
  39.  
  40. main()
  41. {    FILE *out = fopen("scfdtab.c", "w");
  42.     cfd_node area[1 << max(cfd_white_initial_bits, cfd_black_initial_bits)];
  43.     fputs("/* Copyright (C) 1992, 1993 Aladdin Enterprises.  All rights reserved. */\n\n", out);
  44.     fputs("/* This file was generated automatically.  It is governed by the same terms */\n", out);
  45.     fputs("/* as the files scfetab.c and scfdgen.c from which it was derived. */\n", out);
  46.     fputs("/* Consult those files for the licensing terms and conditions. */\n\n", out);
  47.     fputs("/* scfdtab.c */\n", out);
  48.     fputs("/* Tables for CCITTFaxDecode filter. */\n\n", out);
  49.     fputs("#include \"std.h\"\n", out);
  50.     fputs("#include \"scommon.h\"\t\t/* for scf.h */\n", out);
  51.     fputs("#include \"scf.h\"\n\n", out);
  52.     fputs("/* White decoding table. */\n", out);
  53.     fputs("const cfd_node far_data cf_white_decode[] = {\n", out);
  54.     cfd_build_tree(area, cfd_enumerate_white, cfd_white_initial_bits, out);
  55.     fputs("\n};\n\n", out);
  56.     fputs("/* Black decoding table. */\n", out);
  57.     fputs("const cfd_node far_data cf_black_decode[] = {\n", out);
  58.     cfd_build_tree(area, cfd_enumerate_black, cfd_black_initial_bits, out);
  59.     fputs("\n};\n\n", out);
  60.     fputs("/* 2-D decoding table. */\n", out);
  61.     fputs("const cfd_node far_data cf_2d_decode[] = {\n", out);
  62.     cfd_build_tree(area, cfd_enumerate_2d, cfd_2d_initial_bits, out);
  63.     fputs("\n};\n\n", out);
  64.     fputs("/* Uncompresssed decoding table. */\n", out);
  65.     fputs("const cfd_node far_data cf_uncompressed_decode[] = {\n", out);
  66.     cfd_build_tree(area, cfd_enumerate_uncompressed, cfd_uncompressed_initial_bits, out);
  67.     fputs("\n};\n\n", out);
  68.     fputs("/* Dummy executable code to pacify compilers. */\n", out);
  69.     fputs("void\ncfd_dummy()\n{\n}\n", out);
  70.     fclose(out);
  71.     return 0;
  72. }
  73.  
  74. /* Initialize first-level leaves, count second-level nodes. */
  75. private void
  76. cfd_count_nodes(cfd_node *tree, cfd_node *ignore_extn,
  77.   uint code, int code_length, int run_length, int initial_bits)
  78. {    if ( code_length <= initial_bits )
  79.     {    /* Initialize one or more first-level leaves. */
  80.         int sh = initial_bits - code_length;
  81.         cfd_node *np = &tree[code << sh];
  82.         int i;
  83.         for ( i = 1 << sh; i > 0; i--, np++ )
  84.             np->run_length = run_length,
  85.             np->code_length = code_length;
  86.     }
  87.     else
  88.     {    /* Note the need for a second level. */
  89.         cfd_node *np = &tree[code >> (code_length - initial_bits)];
  90.         np->code_length = max(np->code_length, code_length);
  91.     }
  92. }
  93.  
  94. /* Initialize second-level nodes. */
  95. private void
  96. cfd_init2_nodes(cfd_node *tree, cfd_node *extn,
  97.   uint code, int code_length, int run_length, int initial_bits)
  98. {    int xbits = code_length - initial_bits;
  99.     int xrep;
  100.     cfd_node *np1, *np2;
  101.     int i;
  102.     if ( xbits <= 0 ) return;
  103.     np1 = &tree[code >> xbits];
  104.     np2 = &extn[np1->run_length - (1 << initial_bits)];
  105.     xrep = np1->code_length - code_length;
  106.     i = 1 << xrep;
  107.     np2 += (code & ((1 << xbits) - 1)) * i;
  108.     for ( ; i > 0; i--, np2++ )
  109.         np2->run_length = run_length,
  110.         np2->code_length = xbits;
  111. }
  112.  
  113. /* Enumerate all the relevant white or black codes. */
  114. private void
  115. cfd_enumerate_codes(cfd_node_proc proc, cfd_node *tree, cfd_node *extn,
  116.   int initial_bits, const cfe_run *tt, const cfe_run *mut)
  117. {    int i;
  118.     const cfe_run *ep;
  119.     for ( i = 0, ep = tt; i < 64; i++, ep++ )
  120.       (*proc)(tree, extn, ep->code, ep->code_length, i, initial_bits);
  121.     for ( i = 1, ep = mut + 1; i < 41; i++, ep++ )
  122.       (*proc)(tree, extn, ep->code, ep->code_length, i << 6, initial_bits);
  123.     (*proc)(tree, extn, cf1_run_uncompressed.code, cf1_run_uncompressed.code_length, run_uncompressed, initial_bits);
  124.     (*proc)(tree, extn, 0, run_eol_code_length - 1, run_zeros, initial_bits);
  125. }
  126. private void
  127. cfd_enumerate_white(cfd_node_proc proc, cfd_node *tree, cfd_node *extn,
  128.   int initial_bits)
  129. {    cfd_enumerate_codes(proc, tree, extn, initial_bits,
  130.                 cf_white_termination, cf_white_make_up);
  131. }
  132. private void
  133. cfd_enumerate_black(cfd_node_proc proc, cfd_node *tree, cfd_node *extn,
  134.   int initial_bits)
  135. {    cfd_enumerate_codes(proc, tree, extn, initial_bits,
  136.                 cf_black_termination, cf_black_make_up);
  137. }
  138.  
  139. /* Enumerate the 2-D codes. */
  140. private void
  141. cfd_enumerate_2d(cfd_node_proc proc, cfd_node *tree, cfd_node *extn,
  142.   int initial_bits)
  143. {    int i;
  144.     const cfe_run *ep;
  145.     (*proc)(tree, extn, cf2_run_pass.code, cf2_run_pass.code_length,
  146.         run2_pass, initial_bits);
  147.     (*proc)(tree, extn, cf2_run_horizontal.code, cf2_run_horizontal.code_length,
  148.         run2_horizontal, initial_bits);
  149.     for ( i = 0; i < countof(cf2_run_vertical); i++ )
  150.     {    ep = &cf2_run_vertical[i];
  151.         (*proc)(tree, extn, ep->code, ep->code_length, i, initial_bits);
  152.     }
  153.     (*proc)(tree, extn, cf2_run_uncompressed.code, cf2_run_uncompressed.code_length,
  154.         run_uncompressed, initial_bits);
  155.     (*proc)(tree, extn, 0, run_eol_code_length - 1, run_zeros, initial_bits);
  156. }
  157.  
  158. /* Enumerate the uncompressed codes. */
  159. private void
  160. cfd_enumerate_uncompressed(cfd_node_proc proc, cfd_node *tree, cfd_node *extn,
  161.   int initial_bits)
  162. {    int i;
  163.     const cfe_run *ep;
  164.     for ( i = 0; i < countof(cf_uncompressed); i++ )
  165.     {    ep = &cf_uncompressed[i];
  166.         (*proc)(tree, extn, ep->code, ep->code_length, i, initial_bits);
  167.     }
  168.     for ( i = 0; i < countof(cf_uncompressed_exit); i++ )
  169.     {    ep = &cf_uncompressed_exit[i];
  170.         (*proc)(tree, extn, ep->code, ep->code_length, i, initial_bits);
  171.     }
  172. }
  173.  
  174. /* Build and write out the table. */
  175. private void
  176. cfd_build_tree(cfd_node *tree, cfd_enum_proc enum_proc, int initial_bits,
  177.   FILE *f)
  178. {    cfd_node *np;
  179.     const char *prev = "";
  180.     int i, next;
  181.     cfd_node *extn;
  182.     memset(tree, 0, sizeof(cfd_node) << initial_bits);
  183.     /* Construct and write the first level of the tree. */
  184.     (*enum_proc)(cfd_count_nodes, tree, (cfd_node *)0, initial_bits);
  185.     next = 0;
  186.     for ( i = 0, np = tree; i < 1 << initial_bits; i++, np++ )
  187.     { if ( np->code_length > initial_bits )        /* second level needed */
  188.       { np->run_length = next + (1 << initial_bits);
  189.         next += 1 << (np->code_length - initial_bits);
  190.       }
  191.       fprintf(f, "%s\t{ %d, %d }", prev, np->run_length, np->code_length);
  192.       prev = ",\n";
  193.     }
  194.     /* Construct and write the second level. */
  195.     extn = (cfd_node *)malloc(sizeof(cfd_node) * next);
  196.     for ( i = 0, np = extn; i < next; i++, np++ )
  197.         np->run_length = run_error,
  198.         np->code_length = 0;
  199.     (*enum_proc)(cfd_init2_nodes, tree, extn, initial_bits);
  200.     for ( i = 0, np = extn; i < next; i++, np++ )
  201.       fprintf(f, ",\n\t{ %d, %d }", np->run_length, np->code_length);
  202.     free((char *)extn);
  203. }
  204.